home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 32 / pango.zip / PANGOKEY.FIX < prev    next >
Text File  |  1986-09-07  |  1KB  |  31 lines

  1.  The game PANGO is a pretty good one, with the exception of the key
  2.  sequences used to control movement. The following fix changes the movement
  3.  from the O-K-L-; keys to the arrow keys, making it much more natural.
  4.  
  5. 1.  Do the following steps, assuming DEBUG and PANGO are on the same disk:
  6.  
  7.           REN PANGO.EXE PANGO
  8.           DEBUG PANGO
  9.           E 072E 4D
  10.           E 0738 4B
  11.           E 0742 48
  12.           E 074C 50
  13.           W
  14.           Q
  15.           REN PANGO PANGO.EXE
  16.  
  17. 2.  For the purists, the Norton Utilitiea can bw uses to edit the
  18.     instructions in the file PANGO.EXE to reflect these changes.
  19.  
  20. 3.  For the curious, this makes the following changes:
  21.  
  22.           Address    Change From    Change to
  23.  
  24.           CS:042C    CMP AH,27      CMP AH,4D
  25.           CS:0436    CMP AH,25      CMP AH,4B
  26.           CS:0440    CMP AH,18      CMP AH,48
  27.           CS:044A    CMP AH,26      CMP AH,50
  28.  
  29. This replaces the search for the O-K-L-; keyboard scan codes with a
  30. search for the scan codes for the arrow keys.
  31.